﻿

/*弹出窗*/
.pop_wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  margin: 0;
  background: rgba(0,0,0,.5);
  z-index: 10;
}

.pop_Container {
	width:25%;
	position:relative;
	margin:0 auto 50px;
	background:#fff;
	border-radius:4px;
	box-shadow:0 1px 3px rgba(0,0,0,.3);
	box-sizing:border-box;
	margin-top:15vh;
	animation:dialog-fade-in .3s;
	padding: 10px 16px;
}

.pop_header{
  text-align: left;
  font-size: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-bottom: 10px;
  border-bottom: 1px dashed #4D96DF;
  color: #588CD2;
}

.pop_body{
  text-align: left;
}

.pop_footer{
  padding-top: 10px;
  text-align: right;
  box-sizing: border-box;
  height: 50px;
}

.dailog_btn{
	display: flex;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 3px 2px;
  justify-content: flex-end;
  float: right;
  height: 36px;
}

.btn_span {
  color: #fff;
  background: #4D96DF;
  margin-left: 10px;
  padding: 6px 10px;
  border-radius: 2px;
  //cursor: pointer;
  font-size: 14px;
  line-height: normal;
  line-height: 24px;
  user-select: none;
}

.btn_span:hover{
	background-color: #4684C3;
	cursor:pointer;
}
